Wishkit
- Wishkit for User Feedback
Wishkit helps you collect and manage feedback directly from your users, helping you prioritize features and improve your product.
Integrating Wishkit
First, add Wishkit to your project via Swift Package Manager:
swift
dependencies: [ .package(url: "https://github.com/wishkit/wishkit-swiftui", .upToNextMajor(from: "1.0.0")) ]
In your app, initialize Wishkit with your app's unique identifier:
swift
import Wishkit @main struct MyApp: App { init() { Wishkit.configure(withAppID: "your-app-id") } var body: some Scene { WindowGroup { ContentView() } } } struct ContentView: View { var body: some View { WishkitView() } }
This embeds the feedback widget into your app, allowing users to submit suggestions and votes easily.